Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
The move-file npm package is a utility for moving files and directories with ease. It supports various features such as overwriting existing files, renaming files, and ensuring the destination directory exists.
Basic File Move
This feature allows you to move a file from one location to another. The code sample demonstrates moving 'source.txt' to 'destination.txt'.
const moveFile = require('move-file');
(async () => {
await moveFile('source.txt', 'destination.txt');
console.log('The file has been moved');
})();
Overwrite Existing File
This feature allows you to move a file and overwrite the destination file if it already exists. The code sample demonstrates moving 'source.txt' to 'destination.txt' with the overwrite option enabled.
const moveFile = require('move-file');
(async () => {
await moveFile('source.txt', 'destination.txt', { overwrite: true });
console.log('The file has been moved and overwritten');
})();
Ensure Destination Directory Exists
This feature ensures that the destination directory exists before moving the file. If the directory does not exist, it will be created. The code sample demonstrates moving 'source.txt' to a nested directory structure.
const moveFile = require('move-file');
(async () => {
await moveFile('source.txt', 'non/existent/directory/destination.txt');
console.log('The file has been moved and the destination directory was created');
})();
fs-extra is a package that extends the native Node.js fs module with additional methods, including file moving capabilities. It provides a more comprehensive set of file system operations compared to move-file, such as copying, removing, and ensuring directories exist.
mv is a simple package for moving files and directories. It offers similar functionality to move-file but with a simpler API. It also supports overwriting existing files and ensuring the destination directory exists.
rename is a package focused on renaming files and directories. While it can be used to move files by renaming them to a new path, it lacks some of the additional features provided by move-file, such as ensuring the destination directory exists.
Move a file
The built-in fs.rename()
is just a JavaScript wrapper for the C rename(2)
function, which doesn't support moving files across partitions or devices. This module is what you would have expected fs.rename()
to be.
npm install move-file
import {moveFile} from 'move-file';
await moveFile('source/unicorn.png', 'destination/unicorn.png');
console.log('The file has been moved');
Returns a Promise
that resolves when the file has been moved.
Type: string
The file you want to move.
Type: string
Where you want the file moved.
Type: object
See Options.
Returns a Promise
that resolves when the file has been renamed. source
and destination
must be in the same directory.
Type: string
The file you want to rename.
Type: string
What you want to rename the file to.
Type: object
See Options.
Type: boolean
Default: true
Overwrite existing destination file.
Type: string
Default: process.cwd()
The working directory to find source files.
The source and destination path are relative to this.
Type: number
Default: 0o777
Permissions for created directories.
It has no effect on Windows.
FAQs
Move a file - Even works across devices
The npm package move-file receives a total of 303,214 weekly downloads. As such, move-file popularity was classified as popular.
We found that move-file demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.